home *** CD-ROM | disk | FTP | other *** search
- #
- # npc_island.tcl
- #
- # State transitions for npc islands.
- #
-
- proc npc_islandwatch_normal {} {
-
- if {[.iskilled] == "true"} {
- .announcestate explode
- }
- }
-
- proc npc_islandwatch_explode {} {
-
- # there is currently no animation, so we remove the island
- # in a depth of 1000 meters
- set island_pos [.getposition]
- if {[lindex $island_pos 1] < -1000} {
- .setremoveable true
- }
- }
-
- proc npc_islandwatch_cinematic {} {
-
- if {[.iscinematicfinished] == "true"} {
- .announcestate normal
- } elseif {[.iskilled] == "true"} {
- .announcestate explode
- }
- }
-